temphum7 2.2.0
temphum7


Temp&Hum 7 Click

TempHum 7 Click demo application is developed using the NECTO Studio, ensuring compatibility with mikroSDK's open-source libraries and tools. Designed for plug-and-play implementation and testing, the demo is fully compatible with all development, starter, and mikromedia boards featuring a mikroBUS™ socket.


Click Library

  • Author : MikroE Team
  • Date : Nov 2019.
  • Type : I2C type

Software Support

Example Description

This application measurement temperature and humidity data.

Example Libraries

  • MikroSDK.Board
  • MikroSDK.Log
  • Click.TempHum7

Example Key Functions

Application Init

Initializes device and logger module and sets default configuration for measurements.

void application_init ( void )
{
log_cfg_t log_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init ( &logger, &log_cfg );
log_info ( &logger, "---- Application Init ----" );
// Click initialization.
TEMPHUM7_MAP_MIKROBUS ( cfg, MIKROBUS_1 );
temphum7_init ( &temphum7, &cfg );
temphum7_default_cfg( &temphum7 );
}
#define TEMPHUM7_MAP_MIKROBUS(cfg, mikrobus)
Definition temphum7.h:65
void application_init(void)
Definition main.c:32

Application Task

Calculates and Logs temperature and relative humidity

void application_task ( void )
{
mikrobus_printf ( "-> Temperature: %f C/r/n", temperature );
relative_humidity = temphum7_get_relative_humidity ( &temphum7, TEMPHUM7_HOLD_MASTER_MODE );
mikrobus_printf ( "-> Relative humidity: %f %%RH/r/n ", relative_humidity );
Delay_ms ( 1000 );
}
void application_task(void)
Definition main.c:59
#define TEMPHUM7_HOLD_MASTER_MODE
Definition temphum7.h:91

Application Output

This Click board can be interfaced and monitored in two ways:

  • Application Output - Use the "Application Output" window in Debug mode for real-time data monitoring. Set it up properly by following this tutorial.
  • UART Terminal - Monitor data via the UART Terminal using a USB to UART converter. For detailed instructions, check out this tutorial.

Additional Notes and Information

The complete application code and a ready-to-use project are available through the NECTO Studio Package Manager for direct installation in the NECTO Studio. The application code can also be found on the MIKROE GitHub account.